home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 351-375 / disk_351 / pdc / libsrc.lzh / LibSrc / MANIFEST < prev    next >
Text File  |  1990-04-07  |  6KB  |  96 lines

  1. /*
  2.  * Libraries and headers for PDC release 3.3 (C) 1989 Lionel Hummel.
  3.  * PDC Software Distribution (C) 1989 Lionel Hummel and Paul Petersen.
  4.  * PDC I/O Library (C) 1987 by J.A. Lydiatt.
  5.  *
  6.  * This code is freely redistributable upon the conditions that this 
  7.  * notice remains intact and that modified versions of this file not
  8.  * be included as part of the PDC Software Distribution without the
  9.  * express consent of the copyright holders.  No warrantee of any
  10.  * kind is provided with this code.  For further information, contact:
  11.  *
  12.  *  PDC Software Distribution    Internet:                     BIX:
  13.  *  P.O. Box 4006             or hummel@cs.uiuc.edu            lhummel
  14.  *  Urbana, IL  61801-8801       petersen@uicsrd.csrd.uiuc.edu
  15.  */
  16.  
  17. /* MANIFEST - List of library functions and their source files 
  18.  *
  19.  * This listing is far from complete ... it's hardly even begun.
  20.  * Presently covers: Misc, StdLib, StdIO, SysIO
  21.  * Missing: Math, StringLib
  22.  */
  23.  
  24. _abort     sysio/_abort.c          prints a ^C to Output() and calls exit()
  25. access     sysio/access.c          tests accessability of a file/dir
  26. asctime    misc/time.c             ascii representation of a time structure
  27. atof       stdlib/atof.c           translates a float from its ascii form
  28. atoi       stdlib/atoi.c           translates an int from its ascii form
  29. atol       stdlib/atol.c           translates a long from its ascii form
  30. calloc     sysio/malloc.c          allocates a cleared array of blocks
  31. Chk_Abort  sysio/Chk_Abort.c       calls _abort() if a break has been received
  32. clock      misc/time.c             CLK_TCK's since clock() was first called
  33. close      sysio/close.c           closes an open file and free's its fd
  34. creat      sysio/open.c            creates a new file
  35. ctime      misc/time.c             current calendar time (ascii, cf. time())
  36. dayofw     misc/time.c             day of week at a given time (non-standard) 
  37. difftime   misc/time.c             seconds difference between two encoded times
  38. exit       sysio/exit.c            close files, free memory, and call _exit()
  39. _exit      startup/acrt0.asm       terminates program
  40. fclose     stdio/fclose.c          closes an I/O stream
  41. fdopen     stdio/fdopen.c          applies buffering to an open file desciptor
  42. fflush     stdio/fclose.c          flushes an I/O stream's buffer
  43. fgetc      stdio/fgetc.c           reads next char from buffer
  44. fgets      stdio/fgets.c           read line from a file into a string buffer
  45. fopen      stdio/fopen.c           opens the given file name for buffered I/O
  46. format     stdio/format.c          formats a string and outputs characters
  47. fprintf    stdio/fprintf.c         prints a string to a buffered output stream
  48. fputc      stdio/fputc.c           writes a char to a buffered output stream
  49. fputs      stdio/fputs.c           write a null-terminated string to a stream
  50. fread      stdio/fread.c           read from an input stream
  51. free       sysio/malloc.c          frees a previously allocated block of memory
  52. freopen    stdio/fopen.c           changes the mode on a buffered I/O stream 
  53. fscanf     stdio/fscanf.c          reads a string from a buffered input stream
  54. fseek      stdio/fseek.c           seeks relative some part of an I/O stream
  55. ftell      stdio/fseek.c           reports position within an I/O stream
  56. fwrite     stdio/fwrite.c          writes to an output stream
  57. getc       stdio.h                 macro version of fgetc
  58. getenv     stdlib/environment.c    gets an environment variable's value
  59. getopt     misc/getopt.c           aids parsing of command line arguments
  60. gets       stdio/gets.c            ** do not use ** see source for more info
  61. gmtime     misc/time.c             unimplemented at present, returns 0
  62. isatty     sysio/isatty.c          is an fd is attached to a pokey "user"?
  63. isdst      misc/time.c             unimplemented at present, returns 0
  64. jday       misc/time.c             convert time to a julian day (non-standard)
  65. localtime  misc/time.c             breaks down an encoded calenar time
  66. lseek      sysio/lseek.c           seeks relative some part of a file
  67. _main      sysio/_main.c           initiates file/memory tracking, calls main()
  68. malloc     sysio/malloc.c          allocates a block of memory
  69. mktime     misc/time.c             converts time structure to an encoded time
  70. open       sysio/open.c            opens a file
  71. printf     stdio/fprintf.c         prints a formatted string to stdout
  72. putc       stdio.h                 macro version of fputc
  73. putenv     stdlib/environment.c    like setenv() but takes only 1 parm
  74. puts       stdio/fputs.c           place a null-terminated string on stdout
  75. read       sysio/read.c            read from a file
  76. realloc    sysio/malloc.c          alter buffer size; same contents, new ptr 
  77. rename     sysio/rename.c          renames an existing file
  78. scanf      stdio/fscanf.c          reads a formatted string from stdin
  79. setenv     stdlib/environment.c    sets an environment variable's value
  80. sleep      sysio/sleep.c           Delay()'s an integral number of seconds
  81. sprintf    stdio/fprintf.c         prints formatted a string into a given buffer
  82. sscanf     stdio/fscanf.c          reads a formatted string from a given buffer
  83. strdup     stringlib/strdup.c      duplicates a string in new storage
  84. strndup    stringlib/strndup.c     strdup()'s into n bytes of new storage
  85. strdcat    stringlib/strdcat.c     contatenates strings in new storage
  86. strtod     stdlib/strtod.c         parses a double from an ascii string
  87. strtosd    stdlib/strtosd.c        parses a scaled double from an ascii string
  88. strtosud   stdlib/strtosud.c       parses an unsigned scaled double ...
  89. strtol     stdlib/strtol.c         parses a long from an ascii string
  90. strtoul    stdlib/strtoul.c        parses an unsigned long from an ascii string
  91. system     stdlib/system#0.(c|asm) executes program within current context
  92. time       misc/time.c             current calendar time (encoded)
  93. ungetc     stdio/fgetc.c           pushes a character back onto stream
  94. unlink     sysio/unlink.c          deletes a file
  95. write      sysio/write.c           writes to a file
  96.